Fix up example rendering. (#341855, Guillaume Desmottes)
authorMatthias Clasen <mclasen@redhat.com>
Mon, 15 May 2006 14:34:19 +0000 (14:34 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 15 May 2006 14:34:19 +0000 (14:34 +0000)
2006-05-15  Matthias Clasen  <mclasen@redhat.com>

* gtk/tree_widget.sgml: Fix up example rendering. (#341855, Guillaume
Desmottes)

docs/reference/ChangeLog
docs/reference/gtk/tree_widget.sgml

index 7f2583e9d077eaad03db587f32f9f6303b0cd933..82528ef56cb30380c11adf70d20a139ed846dea7 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-15  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/tree_widget.sgml: Fix up example rendering. (#341855, Guillaume
+       Desmottes)
+
 2006-05-11  Emmanuele Bassi  <ebassi@cvs.gnome.org>
 
        * gtk/tmpl/gtkrecentmanager.sgml: Update the error enum and the
index d713e31bd6712f925bf3b7bb77c9916200ad0739..32bbd474631fa4fcf6308c5fb5a0a4be3b1a942a 100644 (file)
@@ -172,7 +172,7 @@ tree = gtk_tree_view_new_with_model (GTK_TREE_MODEL (store));
         the column to label for the user, what type of cell renderer to use, 
         and which piece of data to retrieve from the model for a given row.
       </para>
-      <informalexample><programlisting><![CDATA[
+      <informalexample><programlisting>
 GtkCellRenderer *renderer;
 GtkTreeViewColumn *column;
 
@@ -182,7 +182,7 @@ column = gtk_tree_view_column_new_with_attributes ("Author",
                                                    "text", AUTHOR_COLUMN,
                                                    NULL);
 gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column);
-]]></programlisting></informalexample>
+</programlisting></informalexample>
       <para>
        At this point, all the steps in creating a displayable tree have been
        covered.  The model is created, data is stored in it, a tree view is